home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1999 February
/
EnigmA AMIGA RUN 34 (1999)(G.R. Edizioni)(IT)[!][issue 1999-02].iso
/
earkit
/
news
/
ffnews
/
sendbrowser.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1999-01-01
|
2KB
|
62 lines
/**************************************************************************/
/* Script to give the URL of the URL-Grabber of FFNews to your currently */
/* running WWW-Browser. Currently supported are IBrowse, AWeb and AMosaic */
/* If you miss any features, or find any bugs, please report them to */
/* the address below. If you make any changes to the script, please */
/* send a copy of it to me. */
/* Also it would be nice if you would send me a mail if you use this */
/* and find it useful :-) */
/* This script is $Ver: 1.4b */
/* History : V1.0 first realease */
/* 1.1 adapted to the change of IBrowses portname */
/* 1.2 added support for Hyperion (internal, no release) */
/* 1.3 added "show" to prevent MUI Browsers from crashing, */
/* when iconified */
/* 1.4 start to implement starting default browser which is */
/* set in the env variable BROWSER */
/* Author : Markus 'lammy' Lamers; E-Mail: markus.lamers@tu-clausthal.de */
/* thanx to Peter "Stoebi" Schulz for his help */
/**************************************************************************/
parse arg args
options results
if show('P','IBROWSE') then do
address 'IBROWSE'
SHOW
GOTOURL args
Exit
end
if show('P','AWEB.1') then do
address 'AWEB.1'
OPEN args
Exit
end
if show('P','AMOSAIC.1') then do
address 'AMOSAIC.1'
SHOW
JUMP URL args
Exit
end
if show('P','Hyperion') then do
address 'Hyperion'
GOTO args
Exit
end
if show('P','VOYAGER') then do
address 'VOYAGER'
SHOW
OPENURL args
Exit
end
/* shortened script, get the original one from Aminet */
address command 'run >nil: c:requestchoice "URL-Script" "You must start your WWW-Browser first" "Okay"'
EXIT 10